home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / newsgrp / group98b.txt / 000016_icon-group-sender _Wed May 6 12:36:37 1998.msg < prev    next >
Internet Message Format  |  2000-09-20  |  2KB

  1. Return-Path: <icon-group-sender>
  2. Received: from kingfisher.CS.Arizona.EDU (kingfisher.CS.Arizona.EDU [192.12.69.239])
  3.     by baskerville.CS.Arizona.EDU (8.8.8/8.8.7) with SMTP id MAA07359
  4.     for <icon-group-addresses@baskerville.CS.Arizona.EDU>; Wed, 6 May 1998 12:36:36 -0700 (MST)
  5. Received: by kingfisher.CS.Arizona.EDU (5.65v4.0/1.1.8.2/08Nov94-0446PM)
  6.     id AA18434; Wed, 6 May 1998 12:36:33 -0700
  7. From: eka@corp.cirrus.com (Eka Laiman)
  8. Message-Id: <199805061638.JAA29265@sims-rd.corp.cirrus.com>
  9. Subject: Re: AI use for Icon
  10. To: tmurray@primary.net
  11. Date: Wed, 6 May 1998 09:35:07 -0700 (PDT)
  12. Cc: icon-group@optima.CS.Arizona.EDU
  13. In-Reply-To: <354FC528.4D86@kc-primary.net> from "Terry Murray" at May 5, 98 08:04:44 pm
  14. X-Mailer: ELM [version 2.4 PL24alpha3]
  15. Mime-Version: 1.0
  16. Content-Type: text/plain; charset=US-ASCII
  17. Content-Transfer-Encoding: 7bit
  18. Errors-To: icon-group-errors@optima.CS.Arizona.EDU
  19. Status: RO
  20. Content-Length: 1470
  21.  
  22. Terry wrote:
  23. > I'm writing a program with icon that reads an email message
  24. > and determines the who, what, when, where and by whom. At least
  25. > that is what I am trying to do.
  26. > ...... edited ....
  27.  
  28. I have to do "incoming mail filtering" myself. In my case, due to
  29. my belonging to certain kind of SIG (Special Interest Group), it
  30. is quite common for me to receive 50+ mails a day. This large number
  31. of incoming mail can potentially shield me from "business" related
  32. mails which require my attention. To avoid this, every incoming mail
  33. will be automatically be passed through a "mail filter". If the 
  34. mail comes the mentioned SIG, they will automatically be accumulated
  35. in a "special mail folder" without notifying me of their arrivals;
  36. otherwise, the mail will be passed through just like normal mails
  37. that do not go through the filter.
  38.  
  39. If you are working with UNIX or Linux, the best way to do this kind
  40. of filtering is through "procmail" which is well documented. You can
  41. do a search in the internet for various pages explaining how this
  42. works, a tutorial of using this facility is also available.
  43.  
  44. Since procmail pass the mail as a "stream of text" and the blank line
  45. separate the mail header from the body of the mail, you can easily
  46. do filtering based on "content" or "mail header". In fact the 
  47. list server program known as "majordomo" works this way. The method
  48. used is to "hash" (icon's implementation is through "table") each
  49. field in the mail header. 
  50.  
  51. -eka-
  52.  
  53.